home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / graphics / n-z / rend24 / install next >
Text File  |  1995-12-21  |  2KB  |  61 lines

  1. ; Script to install libraries from this disk into your current
  2. ; LIBS: directory.
  3.  
  4. Echo " "
  5. Echo "This script will install three libraries into your current"
  6. Echo "LIBS: directory which are used by the Rend24 program."
  7. Echo "They are hame.library, dctv.library, and arp.library."
  8. Echo " "
  9. Echo "Arp.library is required for Rend24's built-in front end."
  10. Echo "Hame.library is required to render HAM-E images."
  11. Echo "Dctv.library is required to render DCTV images."
  12. Echo " "
  13.  
  14. Ask "Do you want to install these libraries?"
  15. Echo " "
  16. If WARN
  17.     Copy :Libs/#?.library LIBS:
  18.     Echo "Library installation complete."
  19. Else
  20.     Echo "Libraries not installed."
  21. EndIf
  22.  
  23. Echo " "
  24. Echo "Rend24 may now be run directly from Workbench.  You can"
  25. Echo "put it anywhere you like by simply dragging its icon to"
  26. Echo "a drawer on, for example, your hard drive.  If you plan"
  27. Echo "on running Rend24 from CLI a lot, you might consider"
  28. Echo "placing it in your C: directory."
  29. Echo " "
  30. Echo "Would you like to copy the Rend24 program to your"
  31. Ask  "C: directory?"
  32. Echo " "
  33. If WARN
  34.     ; Copy programs to C: directory.
  35.     Copy :Rend24 C:
  36.     Copy :Rend24.info C:
  37.     Echo "Program copy complete."
  38. Else
  39.     Echo "Programs not copied."
  40. EndIf
  41.  
  42. Echo " "
  43. Echo "Rend24 uses a program called ShowAnim to display animations"
  44. Echo "and pictures.  In order to use this feature, you will need"
  45. Echo "to copy ShowAnim to your C: directory.  If you want to use"
  46. Echo "a different animation player, you do not need to copy ShowAnim,"
  47. Echo "but you will need to edit the Rend24 config file (see the"
  48. Echo "documentation)."
  49. Echo " "
  50. Ask  "Do you want to copy ShowAnim to your C: directory?"
  51. Echo " "
  52. If WARN
  53.    ; Copy ShowAnim
  54.    Copy c/ShowAnim C:
  55.    Echo "ShowAnim copy complete."
  56. Else
  57.    Echo "ShowAnim not copied."
  58. EndIf
  59.  
  60. Echo " "
  61.